Stored Procedures [dbo].[BAEImisTransGetAllByShipToId]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@ShipToIdvarchar(10)10
SQL Script
CREATE PROCEDURE [dbo].[BAEImisTransGetAllByShipToId] @ShipToId as varchar(10)
AS
     SELECT *
       FROM [dbo].[Trans]
      WHERE ST_ID = @ShipToId

GO
Uses